/* /Pages/Components/Button.razor.rz.scp.css */
.wam-them-button[b-s7vlezdmx3] {
    border: none;
    padding: .3rem;
    font-weight: bolder;
    font-size: 1.2rem;
    border-radius: .5rem;
    /*color: #1D3A6D*/
    color: white;
}

    .wam-them-button.secondary[b-s7vlezdmx3] {
        /*color: #1D3A6D*/
        color: black;
        transition: all .2s;
    }
        .wam-them-button.secondary:hover[b-s7vlezdmx3] {
            background-color: #cecece;
            
        }
        .wam-them-button.primary[b-s7vlezdmx3] {
            background-color: #5BC4BF;
        }


        .wam-them-button.primary:hover[b-s7vlezdmx3] {
            background-color: #a3e2df;
            transition: all .2s;
        }

    .wam-them-button.orange[b-s7vlezdmx3] {
        background-color: #FAA94B;
    }

        .wam-them-button.orange:hover[b-s7vlezdmx3] {
            background-color: #f4bd7f;
            transition: all .2s;
        }

    .wam-them-button.red[b-s7vlezdmx3] {
        background-color: #F15F57;
    }

        .wam-them-button.red:hover[b-s7vlezdmx3] {
            background-color: #ef8983;
            transition: all .2s;
        }

    .wam-them-button.outline[b-s7vlezdmx3] {
        background-color: transparent;
        border: solid 2px #5BC4BF;
        border-radius: 10px;
        color: black;
    }

        .wam-them-button.outline:hover[b-s7vlezdmx3] {
            background-color: #5BC4BF;
            color: white;
            transition: all .2s;
        }
/* /Pages/Components/FilterBriefComponent.razor.rz.scp.css */
.cursor[b-d0dsdied7s] {
    cursor: pointer;
}

.sticky-container[b-d0dsdied7s] {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 2rem;
    z-index: 1;
    max-height: calc(100vh - 5rem); /* Adjust as needed */
    overflow: auto;
}
.cool-underline[b-d0dsdied7s] {
    list-style: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem 0 0.5rem 0;
    border-bottom: 1.5px solid #f15f57;
    position: relative;
    transition: color 0.5s, border-color 0.5s;
}

.tag:hover[b-d0dsdied7s] {
    background: #1D3A6D
}
    .cool-underline[b-d0dsdied7s]::before {
        content: "➤";
        position: absolute;
        left: -2rem; /* Adjust this value for desired position */
        color: rgb(91, 196, 191);
        transition: transform 0.5s, color 0.5s;
    }

    .cool-underline:hover[b-d0dsdied7s] {
        color: #1D3A6D;
        border-color: #1D3A6D;
    }

        .cool-underline:hover[b-d0dsdied7s]::before {
            transform: translateX(0.5rem); /* Slight move on hover */
            color: #1D3A6D;
        }
    .modern-box[b-d0dsdied7s] {
        background: #758CA7;
        border-radius: 0 0 1rem 1rem;
    }

.btn-primary[b-d0dsdied7s] {
    color: #fff;
    padding-right:3.5rem;
    padding-left:1rem;
    background-color: #5bc4bf;
    border-color: #5bc4bf;
    animation: all 0.5s 
}
    .btn-primary[b-d0dsdied7s]::after {
        content: "➤";
        position: relative;
        left: 2rem;
        color: white;
    }

    .btn-primary:hover[b-d0dsdied7s] {
        background-color: #1D3A6D;
        border-color: #1D3A6D;
    }

.custom-search[b-d0dsdied7s] {
    border-radius: 2rem;
    padding: 1.5rem !important;
    border: solid 2px #f7f7f7 !important;
}

.wrapper[b-d0dsdied7s] {
    background: #758CA7;
    border-radius: 1rem;
    /*max-width: 15rem*/;
    margin: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .wrapper:hover[b-d0dsdied7s] {
        /*transform: translateY(-5px);*/
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.menu-header[b-d0dsdied7s] {
    font-size:0.85rem;
    background-color: #758CA7;
    padding: 0.75rem 0 0 0.75rem;
    color: white;
    font-weight: bold;
    border-radius: 1rem 1rem 0 0;
}

.menu-content[b-d0dsdied7s] {
    background: #758CA7;
    padding: 1rem;
}

.category[b-d0dsdied7s] {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
    background: #495d6987;
    transition: background-color 0.3s, transform 0.3s;
}
    .category.active[b-d0dsdied7s] {
        background-color: #5bc4bf;
        color: white;
    }

    .category:hover[b-d0dsdied7s] {
        background-color: #5BC4BF;
        transform: scale(1.05);
        cursor: pointer;
    }

.img-sub-category-container[b-d0dsdied7s] {
    background-color: #5BC4BF;
    padding: .5rem;
    cursor: pointer;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media(min-width:768px) {
    .wrapper[b-d0dsdied7s] {
        min-height:12rem;
        overflow:auto;

    }
}

.brief-active[b-d0dsdied7s] {
    color: #1D3A6D;

}
.sub-active[b-d0dsdied7s] {
    background: #1D3A6D;
}

.sub-category-button[b-d0dsdied7s] {
    display: flex;
    align-items: center;
    background-color: #5bc4bf !important;
    border-color: #5bc4bf !important;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.sub-category-button-red[b-d0dsdied7s] {
    display: flex;
    align-items: center;
    background-color: #f15f57 !important;
    border-color: #f15f57 !important;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}


    .sub-category-button:hover[b-d0dsdied7s] {
        background-color: #f8f9fa;
        transform: scale(1.05);
    }

.sub-category-image[b-d0dsdied7s] {
    width:20px;
    height:20px;
    margin-right: 10px;
    border-radius: 50%;
}

.sub-category-title[b-d0dsdied7s] {
    font-size: 16px;
    font-weight: 500;
}
/* /Pages/Components/LoadingComponent.razor.rz.scp.css */
.lds-roller[b-3i9u4dvbtg] {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-roller div[b-3i9u4dvbtg] {
        animation: lds-roller-b-3i9u4dvbtg 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div[b-3i9u4dvbtg]:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #5BC4BF;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1)[b-3i9u4dvbtg] {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1)[b-3i9u4dvbtg]:after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2)[b-3i9u4dvbtg] {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2)[b-3i9u4dvbtg]:after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3)[b-3i9u4dvbtg] {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3)[b-3i9u4dvbtg]:after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4)[b-3i9u4dvbtg] {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4)[b-3i9u4dvbtg]:after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5)[b-3i9u4dvbtg] {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5)[b-3i9u4dvbtg]:after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6)[b-3i9u4dvbtg] {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6)[b-3i9u4dvbtg]:after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7)[b-3i9u4dvbtg] {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7)[b-3i9u4dvbtg]:after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8)[b-3i9u4dvbtg] {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8)[b-3i9u4dvbtg]:after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller-b-3i9u4dvbtg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.spiner-container[b-3i9u4dvbtg] {
    height: 100vh;
    position: fixed;
    width: 90%;
    top: 0;
    left: auto;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

/* /Pages/Components/ModernCard.razor.rz.scp.css */
.wrapper[b-r5n8f60a9f] {
    border-radius:1rem
}

.menu-header[b-r5n8f60a9f] {
    background-color: #758CA7;
    padding: 0.75rem 0 0 0.75rem;
    color: white;
    font-weight: bolder;
    border-radius: 1rem 1rem 0 0;
}
/* /Pages/Components/PillCardComponent.razor.rz.scp.css */
.pill-container[b-dl7pkpzlc1] {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px; /* Gives the pill shape */
    background-color: #e0e0e0; /* Light gray background */
    position: relative; /* Required for positioning the close button */
    font-family: Arial, sans-serif;
}

.pill-content[b-dl7pkpzlc1] {
    text-align: center;
}

.close-btn[b-dl7pkpzlc1] {
    position: absolute;
    top: -10px; /* Adjusts the position to float on the top right */
    right: -10px;
    cursor: pointer;
    background-color: red;
    border-radius: 50%; /* Makes it circular */
    color: white;
    padding: 0 5px;
    font-size: 14px;
}
/* /Pages/Components/PreviewBriefComponent.razor.rz.scp.css */
.pr-wrapper[b-74hcohab5j] {
    background-color: #d8e2e8;
}

.footer[b-74hcohab5j] {
    background-color: #1a284d;
    height: 4rem;
    color: white;
}


.blub-content[b-74hcohab5j] {
    padding: 2rem 2rem 5rem 2rem;
    height: auto;
    margin: 2rem;
    border-radius: 5px;
}


.priority[b-74hcohab5j] {
    border: solid 3px orange;
    background-color: #f2ece1;
}

.btn-download[b-74hcohab5j] {
    background-color: #1D3A6D;
    border: none;
    padding: .5rem 1rem;
    border-radius: 20px;
    color: white;
}

.cursor[b-74hcohab5j] {
    cursor: pointer;
}

.toggle-menu[b-74hcohab5j] {
    display: flex;
    justify-content: end;
    margin: 10px 0;
    display: none;
}

@media (max-width:768px) {
    #filter-category[b-74hcohab5j] {
        display: none !important;
    }

    .toggle-menu[b-74hcohab5j] {
        display: flex;
        position: sticky;
        top: 5.5rem;
    }
}
/* /Pages/Components/PreviewBriefEmailComponent.razor.rz.scp.css */
.pr-wrapper[b-t1n6g5wnsb] {
    background-color: #d8e2e8;
}

.footer[b-t1n6g5wnsb] {
    background-color: #1a284d;
    height: 4rem;
    color: white;
}
/* /Pages/Components/SubMenuComponent.razor.rz.scp.css */
.wrapper[b-o5pzj6wa0d] {
    border: 3px solid #758CA7;
   /* border-radius: 10px 10px 5px 5px;*/
   border-radius:1rem;
    background-color: white;
}

.menu-header[b-o5pzj6wa0d] {
    background-color: #758CA7;
    padding: .5rem;
    color: white;
    font-weight: bolder;
    border-radius: 10px 10px 0 0;
}
/* /Pages/DesignBrief.razor.rz.scp.css */
.sticky-top[b-itoddkato9] {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* ensures it stays on top of other content */
    background-color: white; /* Change this based on your background color for better visibility */
    padding-bottom:2rem;
}


.horizontal-line[b-itoddkato9] {
    background-color: #55b397;
    width: 100%;
    height: 5px;
}

.img-align[b-itoddkato9]{
    border:1px solid gray;
    background-color:white;
    padding:.5rem;
    border-radius:10px;

}


.wrapper-select-box[b-itoddkato9] {
    width: auto;
}


@media (min-width: 721px) {
    .wrapper-select-box[b-itoddkato9] {
        width: 500px;
    }
}
/* /Pages/UserReports.razor.rz.scp.css */
body[b-hwd1dgjsdm] {
}
/* /Pages/ViewBrief.razor.rz.scp.css */
.blub-content[b-0tg90ed9tl] {
   
    padding: 2rem 2rem 5rem 2rem;
    height: auto;
    margin: 2rem;
    border-radius: 5px;
    
}

.download-file[b-0tg90ed9tl] {
    padding: 0.25rem 1rem;
    background: #2e2e2e38;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    color: white;
    font-weight: bold;
    text-align: center;
}
    .download-file:hover[b-0tg90ed9tl] {
        background: #5BC4BF;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
        cursor: pointer;
    }

       
.priority[b-0tg90ed9tl] {
    border: solid 3px orange;
    background-color: #f2ece1;
}

.btn-download[b-0tg90ed9tl] {
    background-color: #1D3A6D;
    border: none;
    padding: .5rem 1rem;
    border-radius: 20px;
    color: white;
}
.cursor[b-0tg90ed9tl]{
    cursor:pointer;
}

.toggle-menu[b-0tg90ed9tl]{
    display:flex;
    justify-content:end;
    margin:10px 0;
    display:none;
}

@media (max-width:768px) {
    #filter-category[b-0tg90ed9tl]{
       display:none !important;
    }
    .toggle-menu[b-0tg90ed9tl] {
        display: flex;
        position: sticky;
        top:5.5rem;
    }
}

.highlight[b-0tg90ed9tl] {
    background-color: yellow !important;
    color: black;
}

.img-side-blub[b-0tg90ed9tl] {
    width: 100%;
    max-height: 20rem;
    object-fit: contain;
}


@media (max-width:768px){
    .img-side-blub[b-0tg90ed9tl] {
        max-height: 10rem;
        width: 100%;
   
    }
}
/* /Shared/AuthenticationLayout.razor.rz.scp.css */
#img-banner[b-e5ezj8sdys] {
    display: block;
    width: 100%;
    height: auto;
    z-index: -1;
    top: 10rem;
}

.wrapper[b-e5ezj8sdys] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #758CA7;
}
.header-brief[b-e5ezj8sdys] {
    height: 5rem;
    background-color: #d8e2e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.content[b-e5ezj8sdys] {
}

#wam-logo[b-e5ezj8sdys] {
    max-height: 3.5rem;
    display: block;
}

.link[b-e5ezj8sdys] {
    text-decoration: none;
}


footer[b-e5ezj8sdys] {
    background-color: #1a284d;
    /*position: fixed;*/
    /*bottom: 0;*/
    padding: .5rem 1rem;
    color: white;
    width: 100%;
}
/* /Shared/MainBlubsLayout.razor.rz.scp.css */
#img-banner[b-7rdtvo1200]
{
    display:block;
    width:100%;
    height:auto;
    z-index:-1;
    top:10rem;
}

.header-brief[b-7rdtvo1200] {
    height: 5rem;
    background-color: #d8e2e8;
    position:sticky;
    top:0;
    z-index:1000;
  
}

.content[b-7rdtvo1200]{

}

#wam-logo[b-7rdtvo1200]{
    max-height:3.5rem;
    display:block;
}

.link[b-7rdtvo1200]{
    text-decoration:none;
}
.footer[b-7rdtvo1200] {
    background-color: #1a284d;
    height: 4rem;
    color: white;
    position:absolute;
    bottom:0;
    width:100%;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-znrneszjhi] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-znrneszjhi] {
    flex: 1;
}

.sidebar[b-znrneszjhi] {
    background-color: white;
}

.top-row[b-znrneszjhi] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-znrneszjhi]  a, .top-row[b-znrneszjhi]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-znrneszjhi]  a:hover, .top-row[b-znrneszjhi]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-znrneszjhi]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-znrneszjhi] {
        justify-content: space-between;
    }

        .top-row[b-znrneszjhi]  a, .top-row[b-znrneszjhi]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-znrneszjhi] {
        flex-direction: row;
    }

    .sidebar[b-znrneszjhi] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-znrneszjhi] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-znrneszjhi]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-znrneszjhi], article[b-znrneszjhi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.content[b-znrneszjhi] {
    padding-top: 6rem;
}

#blazor-error-ui[b-znrneszjhi] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-znrneszjhi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wamqalsp3u] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(117, 140, 167, 1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28117,140, 167' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255 255, 255, 1);
}

    .navbar-toggler:checked[b-wamqalsp3u] {
        background-color: #f7f7f7;
    }

.top-row[b-wamqalsp3u] {
    background-color: white;
}

.navbar-brand[b-wamqalsp3u] {
    font-size: 1.1rem;
}
.collapse[b-wamqalsp3u]{
    display:block !important;
}
.bi[b-wamqalsp3u] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

#wam-logo[b-wamqalsp3u] {
    height: auto;
    width: 250px;
    display: block;
}

.nav-scrollable[b-wamqalsp3u] {
    background-color: #758ca7 !important;
    border-radius: 0 50px 0 0;
}


.bi-house-door-fill-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-wamqalsp3u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-wamqalsp3u] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wamqalsp3u] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wamqalsp3u] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wamqalsp3u]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-wamqalsp3u]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
    }

    .nav-item[b-wamqalsp3u]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-scrollable[b-wamqalsp3u] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-wamqalsp3u] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wamqalsp3u] {
        display: none;
    }


    .nav-scrollable[b-wamqalsp3u] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}


@media (max-width: 641px) {

    .nav-scrollable[b-wamqalsp3u] {
        border-radius: 0;
    }

    #wam-logo[b-wamqalsp3u] {
        height: 2.5rem;
        width: auto;
    }

    .top-row[b-wamqalsp3u] {
        background-color: transparent;
    }
}


